Category: Geeks r Us
Hello all you Python programmers out there,
I'm working on a project in Python where I need to bind an event to a combo box, but I don't know what params to pass to wx.bind()--is there a wx.evt_combo or something? I know that the second param to wx.bind is a function object, which I could do with either a lambda or by defining a function in my Python source file to handle the change. Any advice would be greatly appreciated, as the WX Python docs are very minimalistic, and don't really explain what gets passed to what, or what the acceptable values for things are.
Tyler